[HTTP] Re-enable Http3 nginx interop test#124591
Merged
ManickaP merged 1 commit intodotnet:mainfrom Feb 19, 2026
Merged
Conversation
The quic.nginx.org interop test was disabled due to TLS alert 112 errors. The known build error report shows 0 hits in the past 30+ days, indicating the external server issue has been resolved. Re-enable the test URI in InteropUrisWithContent(). Fixes dotnet#120257 Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Contributor
|
Tagging subscribers to this area: @karelz, @dotnet/ncl |
Contributor
There was a problem hiding this comment.
Pull request overview
This PR re-enables the previously disabled HTTP/3 nginx interop test by restoring the https://quic.nginx.org/ test URI. The test was disabled due to TLS alert 112 errors originating from the external nginx server. After retesting, the external server issue has been resolved and the test now passes.
Changes:
- Re-enable the nginx interop test URI in
InteropUrisWithContent()method
wfurt
approved these changes
Feb 19, 2026
Member
Author
|
/azp run runtime-libraries-coreclr outerloop |
|
Azure Pipelines successfully started running 1 pipeline(s). |
MihaZupan
approved these changes
Feb 19, 2026
Member
Author
|
Filed new outerloop failure in #124602 otherwise it seems all is clear (ie. the rest is unrelated). |
Member
Author
|
/ba-g unrelated |
rzikm
added a commit
to rzikm/dotnet-runtime
that referenced
this pull request
Feb 23, 2026
The quic.nginx.org QUIC endpoint is timing out again from Helix CI machines, causing 100% failure rate on Public_Interop_ExactVersion_BufferContent_Success since Feb 21. The test was re-enabled in dotnet#124591 on Feb 19 but the external server became unreachable again 2 days later. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
rzikm
added a commit
that referenced
this pull request
Feb 23, 2026
The quic.nginx.org QUIC/HTTP3 interop test URI was re-enabled in #124591 (merged Feb 19), but the external server's QUIC endpoint became unreachable again starting Feb 21, causing **100% failure rate** (26 failures, 0 passes) on `Public_Interop_ExactVersion_BufferContent_Success` across all platforms. ### Analysis - **Error**: `Connection handshake was canceled due to the configured timeout of 00:00:10 seconds elapsing. (quic.nginx.org:443)` wrapping `QuicException` - **Scope**: Only the `quic.nginx.org` URI is affected; the `cloudflare-quic.com` URI passes fine - **Not a code regression**: The server responds to HTTP/1.1 requests normally, but its QUIC/UDP endpoint is not responding from Helix CI machines - **History**: This is the same class of external server issues that led to the original disablement in #120257 ### Example console log https://helixr1107v0xdcypoyl9e7f.blob.core.windows.net/dotnet-runtime-refs-heads-main-af729cf491f8439bab/System.Net.Http.Functional.Tests/3/console.e4a06694.log?helixlogtype=result ### Change Remove `quic.nginx.org` from the list of test uris permanently, as it is simply too unreliable to use in our CI. --------- Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The quic.nginx.org interop test was disabled due to TLS alert 112 errors. Retested and the test is passing, indicating the external server issue has been resolved.
Re-enable the test URI in
InteropUrisWithContent().Fixes #120257